home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 96 / PC Zone #096.7z / Dppcz1200.mdf / Demos / Gunlok / data1.cab / Program_Executable_Files / scripts / gastankfrag.gsh < prev    next >
Text File  |  2000-09-09  |  1KB  |  52 lines

  1. // defines the fragmented gastank at the beginning of docks
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_gastank_FRAG_GSH
  8. #define INCLUDED_gastank_FRAG_GSH
  9.  
  10. ////////////////////////////////////////////////////////////////////////////////////
  11.  
  12. #include "defaults.gsh"
  13.  
  14. shape Shp_gastankbust
  15. {
  16.            file "objects\gastankbust.rif"
  17.            name "gastankbust"
  18. }
  19.  
  20. role Rol_gastankbust : Rol_PlacedObject
  21. {
  22.     shape        Shp_gastankbust
  23.     identifier        "gastankbust"
  24. }
  25.  
  26. hierarchy Hcy_gastankfrag
  27. {
  28.     file        "objects\gastankfrag.rif"
  29.     name        "gastankfrag"
  30.     hotspot         none
  31. }
  32.  
  33. role Rol_gastankfrag : Rol_FragObject
  34. {
  35.     shape           Hcy_gastankfrag
  36.     identifier         "gastankfrag"
  37. }
  38.  
  39. frag data Frg_gastankfrag
  40. {
  41.     role         Rol_gastankfrag
  42.     replace role     Rol_gastankbust
  43.     replace        yes
  44.     scale         10
  45.     symmetric        no
  46. }
  47.  
  48. ////////////////////////////////////////////////////////////////////////////////////
  49.  
  50. // end wrapper - for preventing multiple or recursive inclusions
  51. #endif // !INCLUDED_PYLON_FRAG_GSH
  52.